home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006099A < prev    next >
Text File  |  1992-06-02  |  269b  |  18 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define MAX_LEN 10
  5. #define EDIT_MASK(size) "%" #size "s"
  6.  
  7. main()
  8. {
  9.     char str[MAX_LEN + 1];
  10.  
  11.     printf("Enter string (max length %u): ", MAX_LEN);
  12.     scanf(EDIT_MASK(MAX_LEN), str);
  13.     printf("str contains >%s<\n", str);
  14.  
  15.     return (0);
  16. }
  17.  
  18.